Uses of Class
org.eclipse.vtp.framework.interactions.voice.vxml.Action

Packages that use Action
org.eclipse.vtp.framework.interactions.voice.vxml   
 

Uses of Action in org.eclipse.vtp.framework.interactions.voice.vxml
 

Subclasses of Action in org.eclipse.vtp.framework.interactions.voice.vxml
 class ActionSet
          The ActionSet class bundles multiple Action instances so they may be added to a container en mass instead of individually.
 class Assignment
          The Assignment class represents the <assign> VXML element.
 class Disconnect
          The Disconnect class represents the <disconnect> VXML element.
 class Exit
          The Exit class represents the <exit> VXML element.
 class Goto
          The Goto class represents the <goto> VXML element.
 class Prompt
          The Prompt class represents the <prompt> VXML element.
 class Reprompt
          The Reprompt class represents the <reprompt> VXML element.
 class Return
          The Return class represents the <return> VXML element.
 class Submit
          The Submit class represents the <submit> VXML element.
 class Throw
          The Throw class represents the <throw> VXML element.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml that return Action
 Action[] If.getActions()
          Returns the list of actions in this if.
 Action[] ElseIf.getActions()
          Returns the list of actions in this else-if.
 Action[] Else.getActions()
          Returns the list of actions in this else.
 Action[] ActionSet.getActions()
          Returns the list of actions in this set.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml with parameters of type Action
 void If.addAction(Action action)
          Adds the action to this if.
 void Filled.addAction(Action action)
          Adds the action to the list of actions to perform if this filled element is executed.
 void EventHandler.addAction(Action action)
          Adds the action to the list of actions to be performed by the interpreter if this event handler receives an event.
 void ElseIf.addAction(Action action)
          Adds the action to this else-if.
 void Else.addAction(Action action)
          Adds the action to this else.
 void Block.addAction(Action action)
          Adds the action to the list of actions to perform if this block element is executed.
 void ActionSet.addAction(Action action)
          Adds the action to this set.
 void If.removeAction(Action action)
          Removes the action from this if.
 void Filled.removeAction(Action action)
          Removes the action from the list of actions to perform if this filled element is executed.
 void EventHandler.removeAction(Action action)
          Removes the action from the list of actions to be performed by the interpreter if this event handler receives an event.
 void ElseIf.removeAction(Action action)
          Removes the action from this else-if.
 void Else.removeAction(Action action)
          Removes the action from this else.
 void Block.removeAction(Action action)
          Removes the action from the list of actions to perform if this block element is executed.
 void ActionSet.removeAction(Action action)
          Removes the action from this set.